[USER (data scientist)]: Hey, I've got this dataset called "high_credit_long_duration" and I need to find clients with stable jobs. Can you help me out? Please generate a DataFrame of customers with stable employment (employment duration of 4 to 7 years or more than 7 years).
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd 
import pickle
from decision_company import read_csv_file, 

# please import the necessary private functions from decision_company first

# Load the dataset 
credit_customers = read_csv_file("credit_customers.csv") 
 
# YOUR SOLUTION BEGIN:
<code1>
[COMPLETE YOUR CODE]
</code1>
# YOUR SOLUTION END

print(f"stable_employment: {stable_employment}") 

# save data
pickle.dump(stable_employment, open("./pred_result/stable_employment.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Of course! Let's filter those clients for you. Here's the code:
'''
import pandas as pd 
import pickle
from decision_company import read_csv_file, 

# please import the necessary private functions from decision_company first

# Load the dataset 
credit_customers = read_csv_file("credit_customers.csv") 
 
# YOUR SOLUTION BEGIN:
